home *** CD-ROM | disk | FTP | other *** search
/ ftp2.jacobs.com / 2015.02.ftp2.jacobs.com.tar / ftp2.jacobs.com / pub / iPass / Open Mobile-V2.3.0-11624-V9.000.msi / Data1.cab / _87583C06BF0ECBF80673FF654734648A < prev    next >
Text File  |  2012-10-24  |  1KB  |  31 lines

  1. @REM this is for un-registering of Oesis COM (before software update)
  2.  
  3. @echo off
  4. @setlocal
  5. set OMAppDataPath=""
  6.  
  7. ver | find "XP" > nul
  8. if %ERRORLEVEL% == 0 goto ver_xp
  9.  
  10. set OMAppDataPath=%PROGRAMDATA%
  11. goto continue
  12.  
  13. :ver_xp
  14. set OMAppDataPath=%ALLUSERSPROFILE%\Application Data
  15.  
  16. :continue
  17.  
  18. @REM Remove registry value indicating that plug-ins have been installed
  19. @echo reg delete HKEY_LOCAL_MACHINE\SOFTWARE\OM\MobilityClient /v PluginsVersion /f >> "%OMAppDataPath%\NGC\LOGS\SWUpdateAssistant.log" 2>&1
  20. reg delete HKEY_LOCAL_MACHINE\SOFTWARE\OM\MobilityClient /v PluginsVersion /f >> "%OMAppDataPath%\NGC\LOGS\SWUpdateAssistant.log" 2>&1
  21.  
  22. @REM Go to the opswat directory
  23. pushd ..\..\..\opswat
  24.  
  25. IF EXIST "OesisCom.dll" echo Before un-registering: OesisCom.dll exists >> "%OMAppDataPath%\NGC\LOGS\SWUpdateAssistant.log"
  26. regsvr32 /s /u OesisCom.dll 
  27. if errorlevel 3 echo Unregister oesisCom.dll failed >> "%OMAppDataPath%\NGC\LOGS\SWUpdateAssistant.log"
  28.  
  29. @REM Go back to directory that this batch file is located.
  30. popd
  31.